db_constraints ~master (2022-04-24T06:29:45.2622732)
Dub
Repo
Book
test
books
Undocumented in source.
version(unittest)
@
ForeignKeyConstraint
!("fk_Books_Authors_AuthorId", ["AuthorId"], "Authors", ["AuthorId"],
Rule
.
cascade
,
Rule
.
cascade
)
class
Book {
int
BookId
[@property getter];
Nullable
!
int
AuthorId
[@property getter];
N
AuthorId
[@property setter];
this
(int BookId_, string Title_, N AuthorId_);
Book
dup
();
mixin
KeyedItem
!()
;
}
Constructors
this
this
(int BookId_, string Title_, N AuthorId_)
Undocumented in source.
Members
Functions
dup
Book
dup
()
Undocumented in source. Be warned that the author may not have intended to support it.
Mixins
__anonymous
mixin
KeyedItem
!()
Undocumented in source.
Properties
AuthorId
Nullable
!
int
AuthorId
[@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
AuthorId
N
AuthorId
[@property setter]
Undocumented in source. Be warned that the author may not have intended to support it.
BookId
int
BookId
[@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
Meta
Source
See Implementation
test
books
classes
Book
Books